home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / PROGRAMR / SPMATE13.ZIP / SPELL.PA$ / spell.pas
Pascal/Delphi Source File  |  1993-05-07  |  611b  |  26 lines

  1. Unit Spell;
  2.  
  3. interface
  4. uses WinTypes,
  5.      WinProcs,
  6.      WinDos,
  7.      Strings,
  8.      Objects,
  9.      OWindows,
  10.      ODialogs,
  11.      OStdDlgs;
  12.  
  13. function SpelMateInit:integer;
  14. function Spellcheck(Word:PChar):Boolean;
  15. procedure AddWord(Word:PChar);
  16. procedure IgnoreWord(Word:PChar);
  17. function SuggestWord(Word:PChar):Pchar;
  18.  
  19. implementation
  20.  
  21. function SpelmateInit;external 'SpelMate' index 1;
  22. function SpellCheck; external 'Spelmate' index 2;
  23. procedure AddWord;external 'spelmate' index 3;
  24. procedure IgnoreWord;external 'spelmate' index 4;
  25. function SuggestWord;external 'spelmate' index 5;
  26. end.